home *** CD-ROM | disk | FTP | other *** search
/ Aminet 20 / Aminet 20 (1997)(GTI - Schatztruhe)[!][Aug 1997].iso / Aminet / comm / www / HTP.lha / HTP / source / image.h < prev    next >
C/C++ Source or Header  |  1997-06-21  |  612b  |  33 lines

  1. /*
  2. //
  3. // image.h
  4. //
  5. // Copyright (c) 1995-96 Jim Nelson.  Permission to distribute
  6. // granted by the author.  No warranties are made on the fitness of this
  7. // source code.
  8. // Amiga version - 1997 - Geert Bevin
  9. //
  10. */
  11.  
  12. #ifndef IMAGE_H
  13. #define IMAGE_H
  14.  
  15. #include <exec/types.h>
  16.  
  17. /*
  18. // image file structure
  19. */
  20. typedef struct tagIMAGEFILE
  21. {
  22.     char        *name;
  23.     FILE        *file;
  24.     uint        imageType;
  25. } IMAGEFILE;
  26.  
  27. BOOL OpenImageFile(const char *filename, IMAGEFILE *imageFile);
  28. void CloseImageFile(IMAGEFILE *imageFile);
  29. BOOL GetImageDimensions(IMAGEFILE *imageFile, WORD *width, WORD *height);
  30.  
  31. #endif
  32.  
  33.